home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / initrd.lz / initrd / scripts / local-premount / ntfs_3g next >
Encoding:
Text File  |  2009-10-28  |  205 b   |  15 lines

  1. #! /bin/sh
  2.  
  3. case $1 in
  4. prereqs)
  5.     exit 0
  6.     ;;
  7. esac
  8.  
  9. if [ "$ROOTFSTYPE" = ntfs ] || [ "$ROOTFSTYPE" = ntfs-3g ] || \
  10.    [ "$LOOPFSTYPE" = ntfs ] || [ "$LOOPFSTYPE" = ntfs-3g ]; then
  11.     modprobe fuse
  12. fi
  13.  
  14. exit 0
  15.